home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / utility / rename_.zip / !RENAME.BAT next >
DOS Batch File  |  1994-03-01  |  513b  |  22 lines

  1. @echo off
  2. rename! %1 %2
  3. rem Just in case you need to use a batch file!
  4. if errorlevel 5 goto same
  5. if errorlevel 4 goto unable
  6. if errorlevel 3 goto override
  7. if errorlevel 2 goto nosource
  8. echo Success! or not found!
  9. goto end
  10. :same
  11. echo Source and target specified was the same.
  12. goto end
  13. :unable
  14. echo Unable to rename file.  Most likely because renaming to a directory.
  15. goto end
  16. :override
  17. echo You didn't want to overwrite the target file.
  18. goto end
  19. :nosource
  20. echo Source file was not found.
  21. :end
  22.